Skip to main content

Custom Node Results

Custom results in the Network Map

Focus the results of your Network Map to show only the data that you really want to see with our new URL parameters.

Configure Data Network Visualizer Parameters in URL

To customize the Data Network Visualizer, you can add the Target Node, Depth Level, and Max Depth Level parameters to the base URL.

URL Structure

The base URL structure is as follows:

<base url>/apps/datanetworkvisualizer?targetNode=&maxDepth=&depthLevel=

Parameter Descriptions

  • Target Node: Specifies the central node from which all connections branch out.

    • Use the TableID number, found in the URL of any table.
    • Example: <base url>/apps/datanetworkvisualizer?targetNode=8 centers the visualization on TableID 8.
  • Max Depths: Determines the number of network hierarchy levels to display.

    • Example: <base url>/apps/datanetworkvisualizer?maxDepth=2 displays up to two levels of connections.
  • Depth Level: Highlights a certain depth of connections in the UI.

    • Example: <base url>/apps/datanetworkvisualizer?DepthLevel=1 highlights all first-level connections, muting the rest.

The below example visualizer uses the following URL: <base url>/apps/datanetworkvisualizer?targetNode=8\&maxDepth=2\&depthLevel=1

  • It shows Table ID 8 ("Groups") as the central node.
  • It only displays the Max Depth of 2 connections from the central node.
  • It highlights the nodes that have a Depth Level of 1 from the central node.

Enhancements